home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 7: Sunsite
/
Linux Cubed Series 7 - Sunsite Vol 1.iso
/
system
/
linux-bo
/
setboot-.000
/
setboot-
/
setboot
/
Makefile
< prev
next >
Wrap
Makefile
|
1994-03-29
|
448b
|
25 lines
CFLAGS = -fomit-frame-pointer -O1 -DNDEBUG
LDFLAGS = -s -N
VERSION = 1.2
BINDIR = /usr/bin
OBJS = set-boot.o
set-boot: $(OBJS)
$(CC) -o set-boot $(LDFLAGS) $(OBJS)
install: setboot set-boot
install -m 700 setboot $(BINDIR)
install -m 700 set-boot $(BINDIR)
tar:
(cd ..; tar czf setboot/setboot-$(VERSION).tar.gz \
setboot/{README,Makefile,*.[ch],setboot{,.exe}})
clean:
rm -f $(OBJS) set-boot core
set-boot.o : set-boot.c bootmgr.h